home *** CD-ROM | disk | FTP | other *** search
/ Red Eye Press Kit / Red Eye Press Kit.iso / pc / start.dxr / 00038_button_openQTInstall.ls < prev    next >
Encoding:
Text File  |  2005-03-04  |  467 b   |  16 lines

  1. on mouseUp
  2.   if (the environment).platform contains "Win" then
  3.     QTInstall = the moviePath & "QuickTimeInstaller/QuickTimeInstaller.exe"
  4.   else
  5.     if the movieName contains "_Classic" then
  6.       QTInstall = the moviePath & "QuickTimeInstaller:Classic:QuickTime Installer"
  7.     else
  8.       if the movieName contains "_OSX" then
  9.         QTInstall = the moviePath & "QuickTimeInstaller:OSX:QuickTime.pkg"
  10.       end if
  11.     end if
  12.   end if
  13.   open(QTInstall)
  14.   quit()
  15. end
  16.